From: Álvaro Fernández Rojas Date: Mon, 3 Nov 2025 06:38:52 +0000 (+0100) Subject: github: fix CI apt dependencies X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22http:/www.crowdsec.net/%22/%22https:/collectd.org/%22http:/www.crowdsec.net/%22?a=commitdiff_plain;h=0d4bcb56f5e1386e7dc99f1ec9f3b6c9211c8ab6;p=project%2Fubus.git github: fix CI apt dependencies We need to run 'apt update' before installing the APT packages. Signed-off-by: Álvaro Fernández Rojas --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 386fe2b..5518c1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,6 +54,7 @@ jobs: - name: Install dependencies run: | + sudo apt update sudo apt install ${{ matrix.packages }} - name: Prepare build